home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 26.zip / BS1 part 26 / Fantavision PAL.adf / FantaPlayer.DOC < prev    next >
Text File  |  1988-05-21  |  3KB  |  86 lines

  1.  
  2.  
  3.  
  4.                            FantaPlayer Documentation.
  5.                                   May 19, 1988
  6.  
  7.  
  8.    Aloha!
  9.      FantaPlayer is a movie player for Fantavision, an animation package
  10.    for the Amiga.  This program allows you to execute a script file that
  11.    will play movies in some sequence that you can design.  If you do not
  12.    specify a script file when you invoke it, FantaPlayer will scan the
  13.    current directory for Fantavision movies to play.  If none are found,
  14.    it will then ask you to specify a movie to play, one at a time.  The
  15.    only way to invoke FantaPlayer with a script file, is from the CLI.
  16.  
  17.      To create script file, you will need the NotePad program, or some
  18.    other simple text editor.  Look at your Amiga Users manual for a
  19.    complete description of text editors, and how to use them.
  20.  
  21. Examples from CLI:
  22.    FantaPlayer Demo.s          ;   Will execute the instructions in Demo.s
  23.    FantaPlayer                 ;   Will play movies individually.
  24.  
  25.      These are the commands to control FantaPlayer from a script file.
  26.    Instructions are not case sensitive.  Comment lines can begin with *
  27.    or ;.
  28.  
  29.        NOTE:  The stack size must be at 15000 or larger.  Use:  stack
  30.               15000, just once, before running FantaPlayer.
  31.  
  32.    PLAYLOOP <Status>
  33.        Status is ON or OFF.  If ON then FantaPlayer will start the
  34.        script over from line 1 when it has finished executing the
  35.        script.
  36.  
  37.        NOTE:  Use END to exit with this ON.  Default is OFF.
  38.  
  39.    LOOP <Status>
  40.        Status is ON or OFF.  If ON then movie will play until stopped
  41.        by user.
  42.  
  43.    SPEED <Percent>
  44.        Percent is how fast movies will play.  100 is normal speed.
  45.  
  46.    PLAY <FileName>
  47.        FileName is a movie to load and play.
  48.  
  49.        NOTE:  The background is not cleared during a load of a new
  50.               movie.  If you need the background cleared right after
  51.               the movie has run use the CLEARBACK command.
  52.  
  53.    REPEAT <FileName> <NumberTimes>
  54.        FileName is a movie to load and play.  NumberTimes is number of
  55.        times to play the movie.
  56.  
  57.    GOTO <TheLine>
  58.        TheLine is the next line to execute.
  59.  
  60.        NOTE:  There are no line numbers in the Script file.  You have
  61.               to remember that line 1 is the first line in the file,
  62.               and that line 5 is the fifth line, and so on.
  63.  
  64.    END
  65.        This will exit the player.
  66.  
  67.    CLEARBACK
  68.        Will clear the current background.
  69.  
  70.    BACK <Status>
  71.        Status is ON or OFF.  If ON then the background is cleared
  72.        before every movie is played.  This allows you to create movies
  73.        that use the same background without re-loading that image
  74.        every time.  The default for BACK is ON.
  75.  
  76.    PALETTE <Type>
  77.        Type is FADE or NORMAL.  FADE will fade all colors to black
  78.        before continuing onto the next movie.  NORMAL will just switch
  79.        to the new movie's color palette.  Default for PALETTE is
  80.        NORMAL.
  81.  
  82.    That's it for now.  Enjoy, and I'll see ya on the blit-plane...
  83.  
  84.                               Mahalo, Steve Hales
  85.  
  86.